home *** CD-ROM | disk | FTP | other *** search
/ Day Cry / Day Cry CD.bin / oh_towns / taropyon / splib / splib.lzh / PRG / LHX / USRLIB.H < prev    next >
C/C++ Source or Header  |  1994-07-09  |  998b  |  40 lines

  1. #ifndef    _USRLIB_H
  2. #define    _USRLIB_H
  3.  
  4. #ifndef    _GUIDEFS_H
  5. #    include    <guidefs.h>
  6. #endif
  7. #ifndef    _STDIO_H
  8. #    include    <stdio.h>
  9. #endif
  10.  
  11. #ifndef    C_GRAY
  12. #define    C_GRAY        C_WHITE
  13. #define    C_DARK        C_HBLACK
  14. #define    C_WARNNING    C_HYELLOW
  15. #define    C_ERROR        C_HRED
  16. #define    C_INFO        C_HGREEN
  17. #define    C_TIMEBOX    C_CYAN
  18. #define    C_GRAY0        C_HBLACK
  19. #define    C_GRAY1        C_RED
  20. #define    C_GRAY2        C_WHITE
  21. #define    C_GRAY3        C_MAGENTA
  22. #define    C_METAL0    C_GREEN
  23. #define    C_METAL1    C_CYAN
  24. #define    C_METAL2    C_YELLOW
  25. #define    C_DLGBASE    C_MAGENTA
  26. #endif
  27.  
  28. /*    "usrlib.c"    ----------------------------------------------------*/
  29. extern int        USYS_init( int *argc, char **argv[], int _argc, char *_argv[] );
  30. extern void        USYS_term( int errLevel );
  31. extern int        LHX_putc( int ch );
  32. extern void        LHX_puts( CONST char *s );
  33. extern void        LHX_printf( CONST char *form, ... );
  34. extern void        LHX_fprintf( FILE *fp, CONST char *form, ... );
  35. extern int        LHX_fputc( int ch, FILE *fp );
  36. extern int        LHX_getch(void);
  37.  
  38.  
  39. #endif
  40.